home *** CD-ROM | disk | FTP | other *** search
/ Adobe Graphics & Publishing SDK 1996 December / Adobe Graphics & Publishing SDK 1996 December.iso / pc / pm65sdk / sourcecode / pagemakerclasslibrary / commands / playeroptions.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-10-10  |  808 b   |  40 lines

  1. /*
  2.  *--- PLayerOptions.h ----------------------------------------------------------
  3.  * Copyright (c) 1995-96 Adobe Systems Incorporated.  All rights reserved.
  4.  * Created on Sun, Oct 22, 1995 @ 3:29 PM by Paul Ferguson.
  5.  *
  6.  * Description:
  7.  *-------------------------------------------------------------------------
  8.  */
  9. #ifndef __PLayerOptions__
  10. #define __PLayerOptions__
  11.  
  12. class PLayerOptions
  13. {
  14.  
  15. public:
  16.  
  17.     PLayerOptions(
  18.                 const char     * sLayerName,
  19.                 const char     * sNewName,
  20.                 short        nShow,
  21.                 short        nLock,
  22.                 short        nColorIndex    );
  23.     PLayerOptions(
  24.                 const char     * sLayerName,
  25.                 const char     * sNewName,
  26.                 short        nShow,
  27.                 short        nLock,
  28.                 long        lRed,
  29.                 long        lGreen,
  30.                 long        lBlue    );
  31.  
  32. private:
  33.  
  34.     PLayerOptions();
  35. };
  36.  
  37. #endif
  38.  
  39. // end of PLayerOptions.h
  40.